repo.or.cz
/
and.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
11110 - Equidivisions (DFS, maratón colombiana) &&
[and.git]
/
10469 - To carry or not to carry
/
10469.2.cpp
blob
dbd49994c85f94e680ab9b9f3fe075da39514f49
1
#include <stdio.h>
2
3
int
main
(){
4
unsigned int
x
,
y
;
5
while
(
scanf
(
"%u %u"
, &
x
, &
y
) ==
2
){
6
printf
(
"%u
\n
"
,
x
^
y
);
7
}
8
return
0
;
9
}